Package edu.uci.ics.jung.graph
-
Interface Summary Interface Description Graph<V,E> A graph consisting of a set of vertices of typeVset and a set of edges of typeE.Hypergraph<V,E> A hypergraph, consisting of a set of vertices of typeVand a set of hyperedges of typeEwhich connect the vertices.UndirectedGraph<V,E> A tagging interface for extensions ofGraphthat accept only undirected edges. -
Class Summary Class Description AbstractGraph<V,E> Abstract implementation of theGraphinterface.AbstractTypedGraph<V,E> An abstract class for graphs whose edges all have the sameEdgeType.SparseGraph<V,E> An implementation ofGraphthat is suitable for sparse graphs and permits both directed and undirected edges.UndirectedSparseGraph<V,E> An implementation ofUndirectedGraphthat is suitable for sparse graphs.